/* Allgemeine Stile */
body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f4f7f6;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Hero Banner */
.hero {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-left: 6px solid #0056b3;
}

.hero h1 {
  margin-top: 0;
  color: #0056b3;
  font-size: 2.2rem;
}

.hero p {
  font-size: 1.1rem;
  color: #4a5568;
}

.cta-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #0056b3;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: #004494;
}

.btn-secondary {
  background-color: #e2e8f0;
  color: #2d3748;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.badge-bar {
  margin-top: 25px;
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2b6cb0;
  flex-wrap: wrap;
}

.section-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.section-subtitle {
  text-align: center;
  color: #718096;
  margin-bottom: 30px;
  margin-top: 0;
}

.section-leistungen {
  margin-bottom: 60px;
}

.section-leistungen .section-title {
  color: #0056b3;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.leistung-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.08);
  border-top: 5px solid #0056b3;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.leistung-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 86, 179, 0.12);
}

.leistung-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.leistung-card h3 {
  margin-top: 0;
  color: #1a365d;
  font-size: 1.3rem;
}

.leistung-card .tagline {
  font-size: 0.85rem;
  color: #718096;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  display: block;
}

.leistung-card ul {
  padding-left: 20px;
  margin: 0;
}

.leistung-card li {
  margin-bottom: 8px;
  color: #4a5568;
}

.section-qualifikationen {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-bottom: 60px;
}

.section-qualifikationen .section-title {
  color: #2d3748;
}

.qualifikationen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.qualifikation-item {
  background: #f7fafc;
  border: 1px solid #edf2f7;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.qualifikation-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.qualifikation-content h4 {
  margin: 0 0 5px 0;
  color: #2d3748;
  font-size: 1rem;
}

.qualifikation-content p {
  margin: 0;
  font-size: 0.88rem;
  color: #718096;
}

.section-kontakt {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-top: 6px solid #0056b3;
}

.section-kontakt .section-title {
  color: #0056b3;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #2d3748;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e0;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1rem;
  font-family: inherit;
  color: #2c3e50;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0056b3;
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
}

.form-group textarea {
  resize: vertical;
  height: 120px;
}

.contact-container button {
  width: 100%;
}